Fix release workflow and split CI test jobs for independent retries#682
Merged
laughingman7743 merged 4 commits intomasterfrom Feb 21, 2026
Merged
Fix release workflow and split CI test jobs for independent retries#682laughingman7743 merged 4 commits intomasterfrom
laughingman7743 merged 4 commits intomasterfrom
Conversation
The `dist/*` glob pattern matched the `.gitignore` file in the dist/ directory, which GitHub API renamed to `default.gitignore` when uploading as a release asset. Use explicit file patterns (*.whl and *.tar.gz) to only upload actual build artifacts. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Split the single test job into 3 sequential jobs (test, test-sqla, test-sqla-async) to enable "Re-run failed jobs" in GitHub Actions UI. Each job sets a TEST_TYPE env var that tox-gh-actions uses to select the appropriate tox factor. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Extract common test steps into test-suite.yaml reusable workflow - Change test trigger from push to pull_request to avoid unnecessary CI runs on branch pushes and tag pushes - Weekly schedule trigger retained for periodic master validation Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Move permissions (id-token: write) to the caller workflow so the reusable workflow inherits the required OIDC token permission for AWS credential configuration. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.gitignoreasdefault.gitignoreassetdist/*glob pattern matched the.gitignorefile in thedist/directorydist/*.whl,dist/*.tar.gz) to only upload actual build artifactsdefault.gitignorefrom all affected past releases (v3.19.0 through v3.29.1)testjob into 3 sequential jobs (test→test-sqla→test-sqla-async)TEST_TYPEenv var thattox-gh-actionsuses to select the appropriate tox factorneedsdependencies preserves Athena query quota managementTest plan
default.gitignorein assets🤖 Generated with Claude Code